From 8b9ad1e963843cf305a6588bc60edee170217ec6 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Thu, 20 Feb 2020 17:07:02 +0100 Subject: [PATCH] build: gdk/wayland/cursor depends on wayland-client On distros where wayland-client.h might not be directly in /usr/include we fail to find the correct headers otherwise. --- gdk/wayland/cursor/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdk/wayland/cursor/meson.build b/gdk/wayland/cursor/meson.build index fb14dbf9b6..4b48085d12 100644 --- a/gdk/wayland/cursor/meson.build +++ b/gdk/wayland/cursor/meson.build @@ -7,6 +7,6 @@ wayland_cursor_sources = files([ libwayland_cursor = static_library('wayland+cursor', sources: wayland_cursor_sources, include_directories: [ confinc, ], - dependencies: [ glib_dep, ], + dependencies: [ glib_dep, wlclientdep, ], c_args: common_cflags, link_args: common_ldflags) -- 2.30.2